home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / LINUX / IN6.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  4KB  |  162 lines

  1. /*
  2.  *    Types and definitions for AF_INET6 
  3.  *    Linux INET6 implementation 
  4.  *
  5.  *    Authors:
  6.  *    Pedro Roque        <roque@di.fc.ul.pt>    
  7.  *
  8.  *    Sources:
  9.  *    IPv6 Program Interfaces for BSD Systems
  10.  *      <draft-ietf-ipngwg-bsd-api-05.txt>
  11.  *
  12.  *    Advanced Sockets API for IPv6
  13.  *    <draft-stevens-advanced-api-00.txt>
  14.  *
  15.  *    This program is free software; you can redistribute it and/or
  16.  *      modify it under the terms of the GNU General Public License
  17.  *      as published by the Free Software Foundation; either version
  18.  *      2 of the License, or (at your option) any later version.
  19.  */
  20.  
  21. #ifndef _LINUX_IN6_H
  22. #define _LINUX_IN6_H
  23.  
  24. #include <linux/types.h>
  25.  
  26. /*
  27.  *    IPv6 address structure
  28.  */
  29.  
  30. struct in6_addr
  31. {
  32.     union 
  33.     {
  34.         __u8        u6_addr8[16];
  35.         __u16        u6_addr16[8];
  36.         __u32        u6_addr32[4];
  37. #if (~0UL) > 0xffffffff
  38. #ifndef __RELAX_IN6_ADDR_ALIGNMENT
  39.         /* Alas, protocols do not respect 64bit alignmnet.
  40.            rsvp/pim/... are broken. However, it is good
  41.            idea to force correct alignment always, when
  42.            it is possible.
  43.          */
  44.         __u64        u6_addr64[2];
  45. #endif
  46. #endif
  47.     } in6_u;
  48. #define s6_addr            in6_u.u6_addr8
  49. #define s6_addr16        in6_u.u6_addr16
  50. #define s6_addr32        in6_u.u6_addr32
  51. #define s6_addr64        in6_u.u6_addr64
  52. };
  53.  
  54. struct sockaddr_in6 {
  55.     unsigned short int    sin6_family;    /* AF_INET6 */
  56.     __u16            sin6_port;      /* Transport layer port # */
  57.     __u32            sin6_flowinfo;  /* IPv6 flow information */
  58.     struct in6_addr        sin6_addr;      /* IPv6 address */
  59. };
  60.  
  61.  
  62. struct ipv6_mreq {
  63.     /* IPv6 multicast address of group */
  64.     struct in6_addr ipv6mr_multiaddr;
  65.  
  66.     /* local IPv6 address of interface */
  67.     int        ipv6mr_ifindex;
  68. };
  69.  
  70. /*
  71.  *    Bitmask constant declarations to help applications select out the 
  72.  *    flow label and priority fields.
  73.  *
  74.  *    Note that this are in host byte order while the flowinfo field of
  75.  *    sockaddr_in6 is in network byte order.
  76.  */
  77.  
  78. #define IPV6_FLOWINFO_FLOWLABEL        0x00ff
  79. #define IPV6_FLOWINFO_PRIORITY        0x0f00
  80.  
  81. #define IPV6_PRIORITY_UNCHARACTERIZED    0x0000
  82. #define IPV6_PRIORITY_FILLER        0x0100
  83. #define IPV6_PRIORITY_UNATTENDED    0x0200
  84. #define IPV6_PRIORITY_RESERVED1        0x0300
  85. #define IPV6_PRIORITY_BULK        0x0400
  86. #define IPV6_PRIORITY_RESERVED2        0x0500
  87. #define IPV6_PRIORITY_INTERACTIVE    0x0600
  88. #define IPV6_PRIORITY_CONTROL        0x0700
  89. #define IPV6_PRIORITY_8            0x0800
  90. #define IPV6_PRIORITY_9            0x0900
  91. #define IPV6_PRIORITY_10        0x0a00
  92. #define IPV6_PRIORITY_11        0x0b00
  93. #define IPV6_PRIORITY_12        0x0c00
  94. #define IPV6_PRIORITY_13        0x0d00
  95. #define IPV6_PRIORITY_14        0x0e00
  96. #define IPV6_PRIORITY_15        0x0f00
  97.  
  98. /*
  99.  *    IPV6 extension headers
  100.  */
  101. #define IPPROTO_HOPOPTS        0    /* IPv6 hop-by-hop options    */
  102. #define IPPROTO_ROUTING        43    /* IPv6 routing header        */
  103. #define IPPROTO_FRAGMENT    44    /* IPv6 fragmentation header    */
  104. #define IPPROTO_ESP        50    /* encapsulating security payload */
  105. #define IPPROTO_AH        51    /* authentication header    */
  106. #define IPPROTO_ICMPV6        58    /* ICMPv6            */
  107. #define IPPROTO_NONE        59    /* IPv6 no next header        */
  108. #define IPPROTO_DSTOPTS        60    /* IPv6 destination options    */
  109.  
  110. /*
  111.  *    IPv6 TLV options.
  112.  */
  113. #define IPV6_TLV_PAD0        0
  114. #define IPV6_TLV_PADN        1
  115. #define IPV6_TLV_ROUTERALERT    20
  116. #define IPV6_TLV_JUMBO        194
  117.  
  118. /*
  119.  *    IPV6 socket options
  120.  */
  121.  
  122. #define IPV6_ADDRFORM        1
  123. #define IPV6_PKTINFO        2
  124. #define IPV6_HOPOPTS        3
  125. #define IPV6_DSTOPTS        4
  126. #define IPV6_RTHDR        5
  127. #define IPV6_PKTOPTIONS        6
  128. #define IPV6_CHECKSUM        7
  129. #define IPV6_HOPLIMIT        8
  130. #define IPV6_NEXTHOP        9
  131. #define IPV6_AUTHHDR        10
  132.  
  133. #if 0
  134. /* Aliases for obsolete names */
  135. #define IPV6_RXHOPOPTS        IPV6_HOPOPTS
  136. #define IPV6_RXDSTOPTS        IPV6_DSTOPTS
  137. #define IPV6_RXSRCRT        IPV6_RTHDR
  138. #endif
  139.  
  140. /*
  141.  *    Alternative names
  142.  */
  143. #define SCM_SRCRT        IPV6_RXSRCRT
  144.  
  145. #define IPV6_UNICAST_HOPS    16
  146. #define IPV6_MULTICAST_IF    17
  147. #define IPV6_MULTICAST_HOPS    18
  148. #define IPV6_MULTICAST_LOOP    19
  149. #define IPV6_ADD_MEMBERSHIP    20
  150. #define IPV6_DROP_MEMBERSHIP    21
  151. #define IPV6_ROUTER_ALERT    22
  152. #define IPV6_MTU_DISCOVER    23
  153. #define IPV6_MTU        24
  154. #define IPV6_RECVERR        25
  155.  
  156. /* IPV6_MTU_DISCOVER values */
  157. #define IPV6_PMTUDISC_DONT        0
  158. #define IPV6_PMTUDISC_WANT        1
  159. #define IPV6_PMTUDISC_DO        2
  160.  
  161. #endif
  162.